home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Extra 1996 #3 / AmigaPlus_CD-ROM-EXTRA_Nr.3.bin / aminet-spiele / bunte mischung / rocky / assemble.txt next >
Text File  |  1992-03-22  |  1KB  |  46 lines

  1. Notes on re-assembling files.
  2. -----------------------------
  3.  
  4. Nearly all my source files include the file "std" which contains loads
  5. of handy macros and equates. This file is in the root directory.
  6.  
  7. All assembler source files on this disk have been assembled using
  8. Hisoft's latest "Devpac 3.01" 68030 assembler.
  9. As such the source files do not contain any assembler option directives
  10. since these are set thru a much friendlier Intuition-based control panel.
  11.  
  12. The options which I set for my source files are:
  13.  
  14. "Assembler Control"
  15. -------------------
  16. all defaults except Include set to "INCLUDE:"
  17.  
  18. "Assembler Options"
  19. -------------------
  20. all defaults except Processor set to "68030"
  21.  
  22. "Assembler Optimisations"
  23. -------------------------
  24. Options which are ON   mean the conversion takes place without warning.
  25. Options which are WARN mean the conversion takes place with    warning.
  26.  
  27. MOVE.L to QUICK        ON
  28. MOVEA.L    to SHORT    WARN
  29. ADD/SUB to QUICK    ON
  30. ADDA/SUBA to LEA    ON
  31. LEA to ADDQ/SUBQ    ON
  32. Absolute addressing    ON
  33. Indirect displacements    ON
  34. Base Displacements    WARN
  35. Outer Displacements    WARN
  36. Forward Branches    WARN
  37. Backward Branches    ON
  38. Null Branches to NOP    WARN
  39.  
  40.  
  41. This information should enable anyone to produce EXACT copies of the binaries
  42. on this disk (using Devpac 3).
  43.  
  44. Laurence Vanhelsuwé
  45. 25/FEB/92
  46.